home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d4 / flipper.arc / HARD.BAT < prev    next >
DOS Batch File  |  1989-08-11  |  945b  |  36 lines

  1. REM        This is an example of an autoexec batch file for
  2. REM        loading FLIPPER automatically from a hard disk.
  3. REM        
  4. REM        The files for FLIPPER, including SONIX.COM and
  5. REM        TTS.COM are presumed to be loaded into the
  6. REM        subdirectory C:\FLIPPER
  7. REM 
  8. path c:\flipper
  9. cd \flipper
  10. prompt $p $g
  11. beep 256 200 512 200 1024 200
  12. sonix /K- /NH
  13. tts
  14. echo off
  15. flipper 
  16. REM                An "A" on the command line enables
  17. REM                the autokey mode, but you need
  18. REM                to add a line to load a keyboard macro
  19. REM                program above FLIPPER.
  20. REM
  21. if errorlevel 1 goto noflip
  22. flipload start.flp start.flp
  23. REM                You can change the second configuration
  24. REM                to be some other file, if you want.
  25. flipext start.flp
  26. REM                You can add flipext commands 
  27. REM                for additional configurations,
  28. REM                or delete this one to save memory.
  29. REM                (Approximately 1 kilobyte per external 
  30. REM                configuration.)
  31. goto exit
  32. :noflip
  33. beep 256 1000
  34. :exit
  35. cd \
  36.